home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 5
/
Merciful - Disc 5.iso
/
software
/
p
/
pcqpascalv1.2d.lha
/
Examples2
/
StingLibPCQ
/
source
/
Copy.p
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-05-06
|
259 b
|
20 lines
external;
{$I "include:utils/stringlib.i"}
function Str_Copy(s : string;dep,long : integer) : string;
var
s1 : string;
c : integer;
begin
s1 := allocstring(long+1);
dep := dep-1;
for c := 0 to (long-1) do
s1[c] := s[c+dep];
Str_copy := s1;
end;